Oracle Java Runtime Environment 7
An easy day at the office, having just finished one 'easy app' they want another, Java, "the static one please". I am supplied with an EXE and an MSI, Run the MSI it is going to: C:\Progra… Read More
To disable the expiration check, create a file called deployment.properties, with the following contents:deployment.expiration.check.enabled=falseCopy this file to C:\Program Files (x86)\Java\j… Read More
The registry key to tick "Suppress sponsor offers when installing or updating Java" appears to have changed in recent releases.Here's what I include as part of my install to get this set.Window… Read More
As of Java 7 update 10 there are 2 new properties: WEB_JAVA and WEB_JAVA_SECURITY_LEVEL. On MSI Installs I have added a transform that adds both properties to the Properties page with the valu… Read More
MSI Silent install of Java for x86 Java Will work on x86 systems and x64 systems. MSI install required for installing x86 Java on x64 systemsDue to compatibility problems with silent installin… Read More
Silent install Command Line against Executable passing info to the embeded MSI. For x86 executable, not for use under x64 OS. x86 Java on x64 OS requires MSI install. jre-7u11-windows-i586.e… Read More
Silent install Command Line against Executable passing info to the embeded MSI. For x64 executable. jre-7u11-windows-x64.exe /s /v"/passive /norestart AUTOUPDATECHECK=0 JAVAUPDATE=0 JU=0 WEB… Read More
REM JAVA Uninstall and cleanup script for through Java 1.7.u11 REM with install of Java 1.7.u11 x86 and X64 in Mixed Environment REM Calls removal of Java Autoupdate after install REM Skips… Read More
The simplest way is to use the EXE file straight from the website: jre-7u11-windows-i586.exe /s AUTOUPDATECHECK=0 IEXPLORER=1 JAVAUPDATE=0 JU=0 Mozilla=1 Read More
msiexec.exe /i "[location of msi file]\jre1.7.0_07.msi" TRANSFORMS="[location of mst file]\[name of mst file]" /l*v "[location of where to write log file]\java.log" /qb! This will install Java… Read More
Create a transform with Orca. Change the following values: Property - AutoUpdateCheck = 0 Property - Iexplorer = 1 Property - JavaUpdate = 0 Property - Mozilla = 1 Property - AgreeToLice… Read More